 
  
  nav {
      background-color: #222;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 30px;
      box-shadow: 0 2px 5px gray;
    }

    nav img {
      width: 120px;
      height: auto;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #00bfff;
    }

    h2{
        align-content: center;
        text-align: center;
        color: darkslategrey;
    }
    p{
        font-size: larger;
        color: darkslategray;}
  
div{
      background: white;
      max-width: 1000px;
      margin: 50px auto;
      padding: 50px;
      border-radius: 12px;
      box-shadow: 0 3px 10px black;

    }
div a {
 background: darkslategray;
      max-width: 500px;
      margin: 50px auto;
      padding: 20px;
      border-radius: 12px;
      align-items: center;
      text-align: center

;
}

a{
    color: white;
    font-size: larger;
    text-decoration: none;
    text-align: center;
    align-content: center;
    appearance: none;
}
div a:hover{
    color: yellow;
}

.contact-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 18px;
  margin-bottom: 20px;
}
.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}



 footer {
      background:gray;
      color: white;
      padding: 20px;
      text-align: center;
      margin-top: 40px;
      padding: right 80px; ;
    }

    footer a {
      color: yellow;
      text-decoration: none;
      margin: 0 10px;
      font-weight: bold;
    }

    footer a:hover {
      color: lightblue;
    }



    .team {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.team-member:hover img {
  transform: scale(1.1);
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 1.2em;
}

.team-member p {
  color: #555;
  font-size: 0.9em;
}
